HOW TO WRITE HELLO WORLD PROGRAM IN C? HELLO WORLD PROGRAM IN C ,c language first program, basic c language program
In this blog we show you how to write basic c program . I hope this code help you
How To Write Hello World Program In C?
#include<stdio.h>
int main()
{
printf ("hello");
return 0;
}
OUTPUT
PS C:\Users\Shailesh\Desktop\c> cd "c:\Users\Shailesh\Desktop\c\" ; if ($?) { gcc hello.c -o hello } ; if ($?) { .\hello }
hello